home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / TRUE.HDR < prev    next >
Text File  |  1994-04-25  |  992b  |  39 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _True() --> lTRUE
  8.  
  9. PARAMETERS:
  10.  
  11. None
  12.  
  13. SHORT:
  14.  
  15. Return TRUE in an inline expression (as a function call).
  16.  
  17. DESCRIPTION:
  18.  
  19. _True can be used in places where a function MUST be called, but there may
  20. not be a function to be called.
  21.  
  22. NOTE:
  23.  
  24. I covered this in _False() (since I got to it first in the list), so see
  25. _False() for a discussion of why this function may be useful.  Hey - It could
  26. happen!
  27.  
  28. EXAMPLE:
  29.  
  30. ValidExp = iif(type(_ValFunc) != 'U','_ValFunc()','_FALSE()')
  31.  
  32. @ 10,10 GET variable VALID (ValidExp)
  33.  
  34. In this example, the VALID is hard coded and therefore, MUST have an
  35. expression to evaluate.  VALID followed by nothing would cause a runtime
  36. error.
  37.  
  38. ******************************************************************************/
  39.